github.com/klauspost/compress/zstd.symbolTransform.deltaNbBits (field)

15 uses

	github.com/klauspost/compress/zstd (current package)
		blockenc.go#L763: 		nbBitsOut := (uint32(of.state) + ofB.deltaNbBits) >> 16
		blockenc.go#L775: 		nbBitsOut = (uint32(ml.state) + mlB.deltaNbBits) >> 16
		blockenc.go#L786: 		nbBitsOut = (uint32(ll.state) + llB.deltaNbBits) >> 16
		enc_best.go#L53: 	m.est += int32(ofTT.deltaNbBits>>16 + mlTT.deltaNbBits>>16)
		fse_encoder.go#L50: 	deltaNbBits    uint32
		fse_encoder.go#L57: 	return fmt.Sprintf("{deltabits: %08x, findstate:%d outbits:%d}", s.deltaNbBits, s.deltaFindState, s.outBits)
		fse_encoder.go#L188: 				symbolTT[i].deltaNbBits = tl
		fse_encoder.go#L194: 				symbolTT[i].deltaNbBits = (maxBitsOut << 16) - minStatePlus
		fse_encoder.go#L214: 		deltaNbBits:    0,
		fse_encoder.go#L604: 	minNbBits := s.ct.symbolTT[symbolValue].deltaNbBits >> 16
		fse_encoder.go#L616: 	deltaFromThreshold := threshold - (s.ct.symbolTT[symbolValue].deltaNbBits + tableSize)
		fse_encoder.go#L621: 		if s.ct.symbolTT[symbolValue].deltaNbBits+tableSize > threshold {
		fse_encoder.go#L691: 	nbBitsOut := (first.deltaNbBits + (1 << 15)) >> 16
		fse_encoder.go#L692: 	im := int32((nbBitsOut << 16) - first.deltaNbBits)